/* General Styles */
section {
  padding: 4rem 0;
  font-family: sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Legal Terms Banner */
.legal-terms-banner {
  background-color: #43da87; /* Prada’s blue background */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px; /* desktop height */
  text-align: center;
  padding: 20px;
}

/* Text Styling */
.legal-terms-content p {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #000;
  margin-bottom: 8px;
}

.legal-terms-content h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .legal-terms-banner {
    height: 220px;
  }

  .legal-terms-content h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .legal-terms-banner {
    height: 180px;
  }

  .legal-terms-content p {
    font-size: 12px;
  }

  .legal-terms-content h2 {
    font-size: 20px;
  }
}

/* Terms Section */
.terms-section {
  background: #fff;
  color: #111;
  padding: 6rem 2rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
}

.terms-container h1 {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}

.effective-date {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 2rem;
}

.terms-block {
  margin-bottom: 2.5rem;
}

.terms-block h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.terms-block p,
.terms-block ul {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
}

.terms-block ul {
  padding-left: 1.2rem;
  list-style: disc;
  margin-top: 0.5rem;
}

.terms-block ul li {
  margin-bottom: 0.6rem;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-container h1 {
    font-size: 1.6rem;
  }
  .terms-block h2 {
    font-size: 1.05rem;
  }
}
